date_is_today

判断给定的日期时间是否为今天并返回。

语法:

date_is_today(date);


参数 描述
date 要使用的日期时间。


返回: 布尔值


描述

此功能将返回真正如果给定的日期时间值是正在检查的日期(即:今天),如果不是将返回。这对于游戏中的复活节彩蛋或解锁季节性内容等功能来说非常方便。请注意此函数将会被时区影响(默认是本地时间),你可以用 date_set_timezone() 来改变这个函数。


例如:

if date_is_today(global.Halloween)
   {
   global.Max_Levels = 200;
   }

The above code will check the datetime stored in the global variable "Halloween" to see if it is today, and if it is it sets another global variable to a new value.


上一页: Date And Time
下一页: date_leap_year
© Copyright YoYo Games Ltd. 2018 All Rights Reserved